home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’95 / ProcessBar™ / Code / Sources / sample win.h < prev    next >
Encoding:
Text File  |  1995-09-10  |  631 b   |  23 lines  |  [TEXT/MMCC]

  1. // File "sample win.h" - 
  2.  
  3. #ifndef ____SAMPLE_WIN_HEADER____
  4. #define ____SAMPLE_WIN_HEADER____
  5.  
  6. #ifndef __DRAG__
  7. #include <Drag.h>
  8. #endif  __DRAG__
  9.  
  10. // * ****************************************************************************** *
  11. // * ****************************************************************************** *
  12. // Function Prototypes
  13.  
  14. WindowPtr NewSampleWindow(void);
  15. void DisposeSampleWindow(WindowPtr win);
  16. void SampleWindowEventHandler(EventRecord *theEvent, WindowPtr win);
  17.  
  18. void SetSampleWindowText(WindowPtr win, StringPtr winText);
  19. StringPtr GetSampleWindowText(WindowPtr win);
  20.  
  21. #endif  ____SAMPLE_WIN_HEADER____
  22.  
  23.